e818f0c7bca6f48a664bbd548a4d9c2d53caaebd,JsTestDriver/src/com/google/jstestdriver/idea/execution/JstdRunProfileState.java,JstdRunProfileState,createSMTRunnerConsoleView,#JstdServer#,122
Before Change
testConsoleProperties.setIfUndefined(TestConsoleProperties.HIDE_IGNORED_TEST, true);
testConsoleProperties.setIfUndefined(TestConsoleProperties.SCROLL_TO_SOURCE, true);
JstdConsoleView consoleView = new JstdConsoleView(testConsoleProperties,
myEnvironment,
SMTestRunnerConnectionUtil.getSplitterPropertyName(JSTD_FRAMEWORK_NAME),
ideServer);
Disposer.register(myEnvironment.getProject(), consoleView);
SMTestRunnerConnectionUtil.initConsoleView(consoleView,
JSTD_FRAMEWORK_NAME,
After Change
private SMTRunnerConsoleView createSMTRunnerConsoleView(@Nullable JstdServer ideServer) {
JstdRunConfiguration configuration = (JstdRunConfiguration)myEnvironment.getRunProfile();
TestConsoleProperties testConsoleProperties = new JstdConsoleProperties(configuration, myEnvironment.getExecutor());
String propertyName = SMTestRunnerConnectionUtil.getSplitterPropertyName(JSTD_FRAMEWORK_NAME);
JstdTestProxyFilterProvider filterProvider = new JstdTestProxyFilterProvider(myEnvironment.getProject());
JstdConsoleView consoleView = new JstdConsoleView(testConsoleProperties, myEnvironment, propertyName, ideServer);
Disposer.register(myEnvironment.getProject(), consoleView);
SMTestRunnerConnectionUtil.initConsoleView(consoleView, JSTD_FRAMEWORK_NAME, null, true, filterProvider);
return consoleView;